home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.19970326-19970626 / 000269_news@newsmaster….columbia.edu _Wed Jun 4 20:20:13 1997.msg < prev    next >
Internet Message Format  |  2020-01-01  |  2KB

  1. Return-Path: <news@newsmaster.cc.columbia.edu>
  2. Received: from newsmaster.cc.columbia.edu (newsmaster.cc.columbia.edu [128.59.35.30])
  3.     by watsun.cc.columbia.edu (8.8.5/8.8.5) with ESMTP id UAA03273
  4.     for <kermit.misc@watsun.cc.columbia.edu>; Wed, 4 Jun 1997 20:20:13 -0400 (EDT)
  5. Received: (from news@localhost)
  6.     by newsmaster.cc.columbia.edu (8.8.5/8.8.5) id UAA22663
  7.     for kermit.misc@watsun; Wed, 4 Jun 1997 20:20:12 -0400 (EDT)
  8. Path: news.columbia.edu!panix!news.mathworks.com!news-xfer.cybernet.dk!news.onramp.net!news-in.iadfw.net!news.gymnet.com!LSNT1!lsbsdi6.lightspeed.net!news-ana-7.sprintlink.net!news-ana-24.sprintlink.net!news-west.sprintlink.net!news.sprintlink.net!Sprint!www.nntp.primenet.com!nntp.primenet.com!news.primenet.com!mix.com!sluggy
  9. From: billy@mix.com
  10. Newsgroups: comp.protocols.kermit.misc,comp.os.linux.misc
  11. Subject: Re: Transmit drops the last 10-14 characters
  12. Date: 2 Jun 1997 13:35:00 -0700
  13. Organization: Billy's Place
  14. Lines: 15
  15. Message-ID: <092126D4B1E7B83D.62046B77ECBFA4AC.4D300C0DF78044F6@library-proxy.airnews.net>
  16. X-Orig-Message-ID: <5mvapk$lov@nntp02.primenet.com>
  17. References: <338498B1.41C6@raleigh.ibm.com> <5m2brb$5l3$1@newsmaster.cc.columbia.edu> <338FC0D6.69AAE64D@mindspring.com> <5mps6k$do2$1@newsmaster.cc.columbia.edu>
  18. NNTP-Proxy-Relay: library.airnews.net
  19. NNTP-Posting-Host: biceps.gymnet.com
  20. X-Posted-By: billy@206.165.5.102 (billy)
  21. Xref: news.columbia.edu comp.protocols.kermit.misc:7120 comp.os.linux.misc:197833
  22.  
  23. Frank da Cruz <fdc@watsun.cc.columbia.edu> writes:
  24.  
  25. > #ifdef  NETCONN
  26. >     if (netconn) return (0);            /* Network connection, do nothing */
  27. > #endif  /* NETCONN */
  28. >     sleep(1);                           /* <--- Add this line */
  29.  
  30. I don't know if it's possible in Unix/Linux but in the RT-11 (PDP-11)
  31. Kermit I used a write with a completion routine for this - the write
  32. gets queued then when it's actually done the completion routine (in
  33. the os) executes and clears a wait flag after which the device can be
  34. closed or the program can proceed elsewhere.
  35.  
  36. Billy Y..
  37.